home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 42 / Mac Magazin and MacEasy Magazine CD - Issue 42.iso / Software / Mobiles Büro / Newton / Accordian 1.0b / ADF Folder / morgan.adf < prev    next >
Text File  |  1997-10-15  |  2KB  |  66 lines

  1. // Definition of the MORGAN program
  2. // The ID in Tracks matches one ID in Covers
  3. // if user imports data the id in tracks must match an id in covers
  4. //
  5. application "MORGAN:VtHick" called "MORGAN" 
  6. // with options { "nofolders" }
  7.  
  8. soup "Tracks:MORGAN:VtHick" called "Tracks" of "MORGAN:VtHick"
  9.  
  10. overview "Tracks" called "MORGAN*Tracks" of "Tracks:MORGAN:VtHick" queries "_uniqueID" contains
  11.     {
  12.     column "ID"  width 70 is id
  13.     column "Track" width 30 is track
  14.     column "Title" width 70 is title
  15.     column "Artist" width 70 is artist
  16.     column "Time" width 30 is time
  17.     }
  18.  
  19. class "Track:MORGAN:VtHick" called "Track" of "Tracks:MORGAN:VtHick" contains
  20.     {
  21.     id: integer called "ID"
  22.     track: integer called "Track"
  23.     title: string called "Title"
  24.     artist: string called "Artist"
  25.     time:string called "Time"
  26. //    sample:sound called "Sample"
  27.     notes:note called "Lyrics&Notes"
  28.     }
  29.  
  30.  
  31. soup "Covers:MORGAN:VtHick" called "Covers" of "MORGAN:VtHick"
  32.  
  33. overview "Covers" called "MORGAN*Covers" of "Covers:MORGAN:VtHick" queries "_uniqueID" contains
  34.     {
  35.     column "Title" width 70 is title
  36.     column "Artist" width 70 is artist
  37.     column "Media" width 50 is media
  38.     column "Genre"  width 50 is genre1
  39.     }
  40.  
  41. class "Cover:MORGAN:VtHick" called "Covers" of "Covers:MORGAN:VtHick" contains
  42.     {
  43.     id: integer called "id"
  44.     title: string called "Title"
  45.     artist: string called "Artist"
  46.     label:string called "Label"
  47.     media:string called "Media"
  48.     catalog:string called "Catalog"
  49.     year:string called "Year"
  50.     genre1:string called "Genre1"
  51.     genre2:string called "Genre2"
  52.     length:string called "Length"
  53.     rating:string called "Rating"
  54.     producer:string called "Producer"
  55.     received:string called "Received"
  56.     quality:string called "Quality"
  57.     purchasedAt:string called "Purchased At"
  58.     purchasedDate:datetime called "Purchased Date"
  59.     purchasedPrice:string called "Purchased Price"
  60.     currentPrice:string called "Current Price"
  61.     inventory:string called "Inventory"
  62.     loanedTo:string called "Loaned To"
  63.     loanedDate:string called "Loaned Date"
  64.     Notes:note called "Notes"
  65.     }
  66.